home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / tool / artemis1 / src / errorasm.asm < prev    next >
Encoding:
Assembly Source File  |  1993-08-26  |  281 b   |  31 lines

  1. comment $
  2.  
  3.     errorasm.asm
  4.  
  5.     エラー処理ルーチン (error.c の下位ルーチン)
  6. $
  7.     public    error_int24
  8.  
  9.     assume cs:cseg, ds:cseg
  10.  
  11. cseg segment
  12.  
  13.  
  14. error_setint24    proc
  15.  
  16.  
  17.                 iret
  18. error_setint24    endp
  19.  
  20.  
  21. error_int24        proc
  22.  
  23.  
  24.                 ret
  25. error_int24        endp
  26.  
  27.  
  28. cseg ends
  29.  
  30. end
  31.